home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / amiga / sipp.lha / sipp / include / noise.h < prev    next >
C/C++ Source or Header  |  1993-03-13  |  287b  |  19 lines

  1. /*
  2.  * Declarations needed to use noise() and friends...
  3.  */
  4.  
  5. #ifndef _NOISE_H 
  6. #define _NOISE_H 
  7.  
  8. #include <geometric.h>
  9.  
  10. extern bool     noise_ready;
  11.  
  12. extern void     noise_init();
  13. extern double   noise();
  14. extern double   turbulence();
  15. extern Vector   Dnoise();
  16.  
  17.  
  18. #endif /* _NOISE_H */
  19.